home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / mslang / zstud1 / zdemo.h_ / ZDEMO.H
Encoding:
C/C++ Source or Header  |  1994-04-09  |  977 b   |  39 lines

  1. // zdemo.h : main header file for the ZDEMO application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. //    Global variables
  12. extern CString CurrentZipFile;        // Current Zip File with path
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CZdemoApp:
  16. // See zdemo.cpp for the implementation of this class
  17. //
  18.  
  19. class CZdemoApp : public CWinApp
  20. {
  21. public:
  22.     CZdemoApp();
  23.  
  24. // Overrides
  25.     virtual BOOL InitInstance();
  26.  
  27. // Implementation
  28.  
  29.     //{{AFX_MSG(CZdemoApp)
  30.     afx_msg void OnAppAbout();
  31.         // NOTE - the ClassWizard will add and remove member functions here.
  32.         //    DO NOT EDIT what you see in these blocks of generated code !
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35. };
  36.  
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39.